home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 2
/
Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso
/
Aminet
/
dev
/
e
/
epp_v1_1.lha
/
EPP
/
PModules
/
skipToChar.e
< prev
next >
Wrap
Text File
|
1993-06-26
|
296b
|
16 lines
OPT TURBO
PROC skipToChar (char, theString, pos)
DEF length
/* Finds the specified character in theString and returns its position. */
length := StrLen (theString)
WHILE pos < length
IF theString [pos] = char THEN RETURN pos
INC pos
ENDWHILE
ENDPROC pos
/* skipToChar */